((file-symlink-p file)
nil)
((string-match "\\.Z$" file)
- (if (dired-check-process (concat "Uncompressing " file)
- "uncompress" file)
+ (if (not (dired-check-process (concat "Uncompressing " file)
+ "uncompress" file))
(substring file 0 -2)))
(t
- (if (dired-check-process (concat "Compressing " file)
- "compress" "-f" file)
+ (if (not (dired-check-process (concat "Compressing " file)
+ "compress" "-f" file))
(concat name ".Z"))))))
\f
(defun dired-mark-confirm (op-symbol arg)